@extends('admin.layouts.master')
@section('content')
Table
| # |
Created At |
Id |
Name |
Developer Name |
Edit |
@foreach($projects as $project)
| {{$loop->iteration}} |
{{$project->created_at->format('Y-m-d')}} |
{{$project->id}} |
{{$project->compound->compound_name_en}} |
{{$project->compound->developer->name_en}} |
|
@endforeach
{{$projects->links()}}
@endsection
@section('js')
@include('admin.layouts.js.sweetalert')
@endsection