@extends('layouts.app') @section('title') {{ trans('title.' . $context->context()) }} @stop @section('content')

{{ trans_choice('context.list_' . $context->context(), $page->total(), [ 'count' => $page->total() ]) }}

@include('fragments.crud.index', [ 'page' => $page ]) @if (Route::has($context->context('%s.add'))) @lang('action.add_context', ['context' => trans('context.' . $context->context())]) @endif
@endsection