@extends('layouts.master') @section('css') @endsection @section('title') {{ __('home.other_periods') }} @endsection @section('page-header') @endsection @section('content')
{{-- alerts --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session()->has('create_department'))
{{ session()->get('create_department') }}
@endif {{-- form --}}
@csrf
{{-- table --}}
@foreach (App\Models\other_period::get() as $i => $period) @endforeach
# {{ __('home.crop_name') }} {{ __('home.Implant_number') }} {{ __('home.pariod_name') }} {{ __('home.pariod_status') }} {{ __('home.date_start') }} {{ __('home.date_end') }} {{ __('home.seed_name') }} {{ __('home.notesClient') }}
{{ $i+1 }} {{ $period->crop_name }} {{ $period->Implant_number }} {{ $period->period_name }} {{ $period->date_start }} {{ $period->date_end }} {{ $period->seed_name }} {{ $period->notes }}
@endsection @section('js') @endsection