@extends('admin.layout') @section('content')

{{ __('About History') }}

{{ __('History Info') }}

@csrf
@if ($errors->has('our_history_title'))

{{ $errors->first('our_history_title') }}

@endif
@if ($errors->has('our_history_text'))

{{ $errors->first('our_history_text') }}

@endif

{{ __('About History List') }}

{{ __('Add') }}
@foreach ($histories as $id=>$history) @endforeach
# {{ __('Image') }} {{ __('Title') }} {{ __('Order') }} {{ __('Stratus') }} {{ __('Action') }}
{{ ++$id }} {{ $history->title }} {{ $history->serial_number }} @if($history->status == 1) {{ __('Publish') }} @else {{ __('Unpublish') }} @endif {{ __('Edit') }}
@csrf
@endsection