@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
@endif
|
|
{{ trans('cruds.division_name') }} |
{{-- {{ trans('cruds.division_short_name') }} | --}}
{{ trans('cruds.actions') }}
|
@foreach($divisions as $key => $division)
|
|
{{ $division->division_name ?? '' }} |
{{-- {{ $division->division_short_name ?? '' }} | --}}
@if(show())
@endif
@if(edit())
@endif
|
@endforeach
@endsection
@section('scripts')
@parent