@extends('layouts.admin') @section('title', 'Kelola About Company') @section('content_header')

Kelola About Company

@stop @section('content')
@if ($message = Session::get('success')) @endif

Daftar About Company

@if ($aboutCompanies->count() > 0) @foreach ($aboutCompanies as $key => $aboutCompany) @endforeach
No Judul Gambar Deskripsi Aksi
{{ ($aboutCompanies->currentPage() - 1) * $aboutCompanies->perPage() + $key + 1 }} {{ $aboutCompany->title }}
{{ $aboutCompany->created_at->format('d M Y H:i') }}
@if ($aboutCompany->image) {{ $aboutCompany->title }} @else Tanpa Gambar @endif {{ Str::limit($aboutCompany->description, 80, '...') }}
@csrf @method('DELETE')
{{ $aboutCompanies->render() }}
@else
Belum ada data. Silahkan tambahkan about company baru.
@endif
@stop @section('css') @stop