@extends('layout')
@section('h4-page', __('cars'))
@section('contents')
@if (session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
| # |
{{ __('Name') }} |
{{ __('Action') }} |
@forelse (@$main as $key => $item)
| {{ $main->currentPage() > 1 ? $main->perPage() * $main->currentPage() - $main->perPage() + $key + 1 : $key + 1 }}
|
{{ $item->name }} |
{{ __('manage') }}
|
@empty
| {{ __('NoDataFound') }} |
@endforelse
@endsection
@section('scripts')
@endsection