21 lines
578 B
PHP
21 lines
578 B
PHP
|
@extends('layouts.main')
|
||
|
|
||
|
@section('content')
|
||
|
<table class="table table-compact">
|
||
|
<thead>
|
||
|
<th>Name</th>
|
||
|
<th>Actions</th>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
@foreach ($locations as $row)
|
||
|
<tr>
|
||
|
<td>{{ $row->name }}</td>
|
||
|
<td>
|
||
|
<a href="{{ route('locations.show', $row->id) }}" class="btn btn-info btn-sm">View</a>
|
||
|
</td>
|
||
|
</tr>
|
||
|
@endforeach
|
||
|
</tbody>
|
||
|
</table>
|
||
|
{{ $locations->links() }}
|
||
|
@endsection
|