@extends('layouts.default')
@section('title', 'Vendor Companies List')
@section('header-links')
@include('includes.headers.vendor_companies')
@endsection
@section('new_button')
{!! Form::text('search', request('search'), ['id'=>'tableSearch','class' => 'form-control input-filter input-sm', 'placeholder' => 'Search here']) !!}
search
add Create vendor company
@endsection
@section('content')
Name |
Created By |
Action |
@foreach($list as $k=>$li)
{{ ucwords($li->name) }} |
{{ ucwords($li->creater?->name) }} |
create
|
@endforeach
@if(count($list) == 0)
No data |
@endif
@stop