@extends('layouts.app-admin')
@section('content')
Category
| Sorting |
Img |
Title |
Status |
Action |
@foreach($getcategory as $key=>$row)
| {{$row->sort}} |
@if($row->img)
@else
@endif
|
{{$row->title}} |
@if($row->status=='active')
Active
@else
In-Active
@endif
|
|
@endforeach
@endsection
@section('script')
@endsection