@extends('Backend.dashboard') @section('title') Features @endsection @section('content') @if(Session::has('success'))
@endif @if(Session::has('danger'))
@endif @if(count($errors) > 0)
@foreach($errors->all() as $error) @endforeach
@endif
Add New Feature
@foreach($features as $feature) @endforeach
Feature Name Feature Name Actions
{{ $feature->title }} Edit Feature Delete Feature
@endsection