@extends('admin.layouts.master') @section('title', 'Feature - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __('Feature')}}
{{ __("Add Feature")}}
@foreach($feature as $data)
{{ __('Delete') }}
×
{{ __("Do you really want to delete these records? This process cannot be undone.")}}
@endforeach
#
{{ __('Image') }}
{{ __('Title') }}
{{ __('Detail') }}
{{ __('Status') }}
{{ __('Action') }}
1
{{$data->title}}
{{$data->detail}}
@if( $data->status == 1)
{{ __('Active') }}
@else {{ __('Deactive') }} @endif
{{ __("Edit")}}
{{ __("Delete")}}
@endsection