@extends('admin.layouts.master')
@section('title','Slider Page')
@section('content')
Table
| # |
Created At |
English Name |
Arabic Name |
Action |
@foreach($subjects as $subject)
| {{$loop->iteration}} |
{{$subject->created_at->format('Y-m-d')}} |
{{$subject->name_en}} |
{{$subject->name_ar}} |
|
@endforeach
{{$subjects->appends($_GET)->links()}}
@endsection