@extends('admin.layouts.master') @section('title') categories @endsection @section('css') @endsection @section('content')
Add new
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($data as $row) @include('admin.categories.deleted') @endforeach
name slug Status parent Action
{{ $row->name() }} {{ $row->slug }}
active == '1' ? 'checked' : ''}} onchange="toggleStatus({{$row->id}}, this.checked ? '1' : '0')">
{{ optional($row->parent)->name_ar }}
{{$data->links()}}
@endsection @section('js') @endsection