@extends('backend.layouts.app')
@section('page-title', trans('app.categories'))
@section('page-heading', trans('app.categories'))
@section('breadcrumbs')
@lang('app.categories')
@stop
@section('content')
@include('backend.partials.messages')
Title |
Position |
Href |
@lang('app.action') |
@if (count($categories))
@foreach ($categories as $category)
@include('backend.categories.partials.row', ['base' => true])
@foreach ($category->inner as $category)
@include('backend.categories.partials.row', ['base' => false])
@endforeach
@endforeach
@else
@lang('app.no_records_found') |
@endif
@stop
@section('scripts')
@stop