@extends('admin.layouts.app')
@push('style')
{{--
--}}
@endpush
@section('pagetitlesection')
{{ __('ATTRIBUTE') }}
@endsection
@section('content')
SR. NO |
Name |
Status |
Action |
@forelse ($data as $key=>$value)
{{ ++$key }} |
{{ $value->name ? $value->name : '---' }}
|
@switch($value->is_active)
@case(1)
Active
@break
@case(0)
Inactive
@break
@default
Deleted
@endswitch
|
|
@empty
No
Data Yet |
@endforelse
@endsection
@push('scripts')
{{-- --}}
{{-- --}}
{{--
--}}
{{-- --}}
@endpush