@extends('layouts.admin.index') @section('content') @php $col = 'col-md-12 col-xl-12 col-xs-12 col-sm-12'; @endphp
@if(create()) @php $col = 'col-md-8 col-xl-8 col-xs-8 col-sm-8'; @endphp
@csrf
@if($errors->has('division_name')) {{ $errors->first('division_name') }} @endif
{{--
@if($errors->has('division_short_name')) {{ $errors->first('division_short_name') }} @endif
--}}
@endif
{{-- --}} @foreach($divisions as $key => $division) {{-- --}} @endforeach
{{ trans('cruds.division_name') }}{{ trans('cruds.division_short_name') }} {{ trans('cruds.actions') }}
{{ $division->division_name ?? '' }}{{ $division->division_short_name ?? '' }} @if(show()) @endif @if(edit()) @endif
@endsection @section('scripts') @parent