first commit
This commit is contained in:
20
resources/views/student/partials/table.blade.php
Normal file
20
resources/views/student/partials/table.blade.php
Normal file
@ -0,0 +1,20 @@
|
||||
<tr>
|
||||
<td>{{++$key}}</td>
|
||||
<td>{{ Str::limit($student->applicant, 47) }}</td>
|
||||
<td>{{ $student->email }}</td>
|
||||
<td>{{ Str::limit($student->mobile_no, 47) }}</td>
|
||||
<td>
|
||||
{{ ucfirst($student->intake_month) }}, {{$student->intake_year}}
|
||||
</td>
|
||||
|
||||
<td>
|
||||
<a href="{{route('student.edit', $student->id)}}" class="btn btn-icon-toggle btn-sm" title="edit">
|
||||
<i class="mdi mdi-pencil"></i>
|
||||
</a>
|
||||
|
||||
<button type="button" class="btn btn-icon-toggle" onclick="deleteThis(this); return false;" link="{{ route('student.destroy', $student->id) }}">
|
||||
<i class="far fa-trash-alt"></i>
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
|
Reference in New Issue
Block a user