GitHub is where people build software. More than 100 million people use GitHub to discover, fork, and contribute to over 420 million projects.
CRUD plugin for api's. Contribute to laravel-code/crud development by creating an account on GitHub.
I am doing the separation of frontend and admin. After several days of studying, It seems ok now. My github:https://github.com/ronrun/laravel-multiauth Currently there are 4 versions. There are 3 branches, the branch 9.x_two-tables has two version. commit: frontend and admin log...
A crud Api built with Laravel. Steps used to create this project php artisan make:controller TodoController --resource php artisan make:migration create_todos_table Change DB_CONNECTION to sqlite comment DB_DATABASE touch ./database/database.sqlite php artisan migrate php artisan make:seeder Todos...
techbola simple ajax and laravel crud operations 6d025d6· History2 Commits .idea app bootstrap config database public resources routes storage tests .editorconfig .env.example .gitattributes .gitignore .styleci.yml artisan composer.json ...
<vue-laravel-crud :title="title" :modelName="modelName" :model="model" :columns="columns"> <template v-slot:form="slotProps"> </template> <template v-slot:show="slotProps"> Id{{ slotProps.item.id }}
public function create() { $model = App\Post::class; return view('your-view', compact($model)); } public function store(Request $request) { $entry = (new App\Post)->crudEntry(); $validation = $entry->validate($request->all()); if ($validation->passes()) { $validation->save()...
Core package for CrudAdmin. Support new way of migrations, Admin Models and many more features for Laravel. - crudadmin/framework
Laracrud for Laravel Framework Laracrud is a scalfolding CRUD generator for Laravel Framework. Dont Repeat Yourself with the thing you always do , just generate it. ##Installation You can install this package via composer using this command: composer require pyaesone17/laracrud:dev-master Docum...
Basic CRUD functionalities on Post User Authentication Tailwind CSS used for frontend. Technologies Laravel Framework 8.83.23 PHP 7.3.11 Getting Started Clone the repo: https://github.com/GarimaPandey/LaravelCRUD.git Installing Run migrations: php artisan migrate Run seeder file: php artisan db:see...