@extends('layouts.table') @section('title', trans('menu.category')) @section('create_url', route('category.create')) @section('thead') {{ trans('category.name') }} {{ trans('lang.status') }} {{ trans('lang.action') }} @endsection @section('tbody') @foreach($list as $d) {{ $d->name }} {!! badge_status($d->status) !!}
@endforeach @endsection