@extends('admin.layout.table.index') @section('page-title',trans('language.socialSituations')) @section('root' , "permCategory") @section('nav') @endsection @section("buttons") {{trans("language.add")}} @endsection @section('thead') # {{trans('language.name')}} {{trans('language.description')}} {{trans('language.settings')}} @endsection @section('tbody') @foreach($items as $item) {{ $loop->iteration }} {{$item->name}} {{$item->description}} @includeIf("admin.components.buttons.edit" , ["href" => "socialSituations/$item->id/edit"]) @includeIf("admin.components.buttons.delete",["message" => "($item->name)" , "action" => url("admin/socialSituations/$item->id")]) @endforeach @endsection @section("filters")
@stop @section("js") @endsection